HTMLify
index.html
Views: 93 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="style.css" /> <title>Expanding Cards</title> </head> <body> <div class="panel-wrapper"> <div class="panel active" style="background-image: url('https://source.unsplash.com/featured/?Space')"> <h3>Explore The World</h3> </div> <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Beach')"> <h3>Sunny Beach</h3> </div> <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Winter')"> <h3>City on Winter</h3> </div> <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?GoldenTime')"> <h3>Golden Time</h3> </div> <div class="panel" style="background-image: url('https://source.unsplash.com/featured/?Mountains')"> <h3>Mountains</h3> </div> </div> <script src="app.js"></script> </body> </html> |